home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / pm-utils / power.d / anacron < prev    next >
Text File  |  2009-09-17  |  646b  |  22 lines

  1. #!/bin/sh
  2.  
  3. # This script makes anacron jobs start/stop when a machine gets or
  4. # looses AC power.
  5.  
  6. # The /etc/init.d/anacron script now normally tries to avoid running
  7. # anacron unless on AC power, so as to avoid running down the battery.
  8. # (Things like the slocate updatedb cause a lot of IO.)  Rather than
  9. # trying to second-guess which events reflect having or not having
  10. # power, we just try to run anacron every time and let it abort if
  11. # there's no AC.  You'll see a message on the cron syslog facility 
  12. # (typically /var/log/cron) if it does run.
  13.  
  14. case "$1" in
  15.     false)
  16.     start -q anacron || :
  17.     ;;
  18.     true)
  19.     stop -q anacron || :
  20.     ;;
  21. esac
  22.